home *** CD-ROM | disk | FTP | other *** search
- global clockFirst, clockLast
-
- on doClock ParamPoint, iterations, spritenum
- puppetSprite(spritenum, 1)
- set the loc of sprite spritenum to ParamPoint
- updateStage()
- repeat with X = 1 to iterations
- puppetSound("tick-tock")
- playFramesByTicks(clockFirst, clockLast, 6, spritenum, "clock.cst")
- end repeat
- puppetSprite(spritenum, 1)
- set the locV of sprite spritenum to -1000
- updateStage()
- puppetSprite(spritenum, 0)
- end
-
- on playFramesByTicks startNum, endNum, delayCount, sNum, whCastLib
- if voidp(whCstLib) then
- set whCastLib to "internal"
- end if
- setPuppetState([sNum], 0, 1)
- repeat with X = startNum to endNum
- set the memberNum of sprite sNum to member X of castLib whCastLib
- updateStage()
- set endTick to the ticks + delayCount
- repeat while the ticks < endTick
- if the doubleClick then
- puppetSound(0)
- set X to endNum
- end if
- end repeat
- end repeat
- setPuppetState([sNum], 0, 0)
- puppetSound(0)
- updateStage()
- end
-
- on playFramesByTicksNS startNum, endNum, delayCount, sNum
- setPuppetState([sNum], 0, 1)
- repeat with X = startNum to endNum
- set the castNum of sprite sNum to X
- updateStage()
- set endTick to the ticks + delayCount
- repeat while the ticks < endTick
- if the doubleClick then
- puppetSound(0)
- set X to endNum
- end if
- end repeat
- end repeat
- setPuppetState([sNum], 0, 0)
- updateStage()
- end
-